翻訳と辞書
Words near each other
・ Branch predictor
・ Branch president
・ Branch retinal artery occlusion
・ Branch retinal vein occlusion
・ Branch Rickey
・ Branch Rickey Arena
・ Branch Rickey Award
・ Branch Rickey, Jr.
・ Branch River
・ Branch River (New Hampshire)
・ Branch River (New Zealand)
・ Branch River (Rhode Island)
・ Branch River (Wisconsin)
・ Branch stacking
・ Branch T. Archer
Branch table
・ Branch target predictor
・ Branch theory
・ Branch Township
・ Branch Township, Michigan
・ Branch Township, Schuylkill County, Pennsylvania
・ Branch trace
・ Branch Village, Rhode Island
・ Branch Warren
・ Branch Wars
・ Branch water
・ Branch, Arkansas
・ Branch, Branch County, Michigan
・ Branch, Louisiana
・ Branch, Missouri


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Branch table : ウィキペディア英語版
Branch table
In computer programming, a branch table or jump table is a method of transferring program control (branching) to another part of a program (or a different program that may have been dynamically loaded) using a table of branch or jump instructions. It is a form of multiway branch. The branch table construction is commonly used when programming in assembly language but may also be generated by a compiler, especially when implementing an optimized switch statement where known, small ranges are involved with few gaps.
==Typical implementation==
A branch table consists of a serial list of unconditional branch instructions that is branched into using an offset created by multiplying a sequential index by the instruction length (the number of bytes in memory occupied by each branch instruction). It relies on the fact that machine code instructions for branching have a fixed length and can be executed extremely efficiently by most hardware, and is most useful when dealing with raw data values that may be easily converted to sequential index values. Given such data, a branch table can be extremely efficient. It usually consists of the following 3 steps:
# optionally validating the input data to ensure it is acceptable (this may occur without cost as part of the next step, if the input is a single byte and a 256 byte translate table is used to directly obtain the offset below). Also, if there is no doubt about the values of the input, this step can be omitted.
# transform the data into an offset into the branch table. This usually involves multiplying or shifting (effectively multiplying by a power of 2) it to take into account the instruction length. If a static translate table is used, this multiplying can be performed manually or by the compiler, without any run time cost.
# branching to an address made up of the base address of the branch table plus the just generated offset. This sometimes involves an addition of the offset onto the program counter register (unless, in some instruction sets, the branch instruction allows an extra index register). This final address usually points to one of a sequence of unconditional branch instructions, or the instruction immediately beyond them (saving one entry in the table).
The following pseudocode illustrates the concept
... validate x /
* transform x to 0 (invalid) or 1,2,3, according to value..)
*/
y = x
*4; /
* multiply by branch instruction length (e.g. 4 )
*/
goto next(y); /
* branch into 'table' of branch instructions
*/
/
* start of branch table
*/
next: goto codebad; /
* x= 0 (invalid)
*/
goto codeone; /
* x= 1
*/
goto codetwo; /
* x= 2
*/
... rest of branch table
codebad: /
* deal with invalid input
*/

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Branch table」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.